home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Users Group Library 1996 July
/
C-C++ Users Group Library July 1996.iso
/
vol_400
/
422_02
/
misc
/
hello.c
< prev
next >
Wrap
C/C++ Source or Header
|
1994-03-20
|
163b
|
12 lines
/*
* Standard 'C' demo... Say hello to the world
*
* Compile command: cc hello
*/
#include \mc\stdio.h
main()
{
fputs("Hello world\n", stdout);
}